home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / comman1a / howtouse.frx < prev    next >
Text File  |  1999-09-30  |  518b  |  13 lines

  1.  What is a command line? Its like a pre-load instruction for the 
  2. program to use. The following will run Myprog.exe with the 
  3. command line: /Close
  4. Myprog.exe /Close
  5. The command line dosent have to contain a /
  6. This can be useful to tell the program to just run a spacific 
  7. operation, instead of loading the entire program.
  8. To find out how the command line works, look in the Form_Load 
  9. event in form1.
  10.  
  11. Run a program with a command line by going to:
  12. Start menu>Run> (program name and path) (Command line)
  13.